* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
/* HERO SECTION */
.simple-hero {
    position: relative;
    width: 100%;
    overflow: hidden;
}

/* BREADCRUMB */
.breadcrumb-bar {
    position: absolute;
    width: 100%;
    bottom: 0px;
    left: 0px;
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    padding: 16px 25px;
    font-size: 18px;
    z-index: 10;
}

.breadcrumb-bar a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
}

.breadcrumb-bar span {
    margin: 0 5px;
}

.hero-img {
    height: 460px;
    background-size: cover;
    background-position: center;
    position: relative;
    background-attachment: fixed;
}

/* TEXT CENTER */
.hero-text {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 180px 20px 0px;
    background: rgba(0, 0, 0, 0.55); /* light overlay */
}

.hero-text h1 {
    font-size: 60px;
    font-weight: 800;
    margin-bottom: 10px;
    color: #ff7a2f;
}

.hero-text p {
    font-size: 35px;
    font-weight: 400;
    max-width: 90%;
}

/* Images */
.hero-1 {
    background-image: url("../../../images/home/banner 2_compressed.webp");
}
.hero-2 {
    background-image: url("../../../images/home/banner 2_compressed.webp");
}
.hero-3 {
    background-image: url("../../../images/home/banner 2_compressed.webp");
}

/* Responsive */
@media (max-width: 768px) {
    .hero-img {
        height: 260px;
    }

    .hero-text h1 {
        font-size: 28px;
    }

    .hero-text p {
        font-size: 15px;
    }
}

/* ARROWS */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    padding: 15px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero-img {
        height: 260px;
    }

    .breadcrumb-bar {
        font-size: 12px;
        left: 15px;
        bottom: 15px;
    }
}

/* ================= ARROWS ================= */
.custom-arrow {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.9);
    color: #ff7a2f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
}

/* Hover Effect */
.custom-arrow:hover {
    background: #ff7a2f;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 122, 47, 0.6);
}

/* Position Fix */
.carousel-control-prev,
.carousel-control-next {
    width: auto;
    opacity: 1;
}

.carousel-control-prev {
    left: 20px;
}

.carousel-control-next {
    right: 20px;
}

/* Mobile Optimization */
@media (max-width: 768px) {
    .custom-arrow {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

/* Sehat Cards */

/* Transforming Lives Through Healthcare Section */
.transform-section {
    background: #f6f6fb;
    padding: 60px 0 40px 0;
    overflow: hidden;
}
.transform-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    background: #f4f6fd;
    border-radius: 28px;
    box-shadow: 0 4px 32px rgba(80, 112, 255, 0.06);
    padding: 48px 48px 36px 48px;
}
.transform-left {
    flex: 1 1 480px;
    min-width: 320px;
}
.transform-left h2 {
    font-size: 2.3rem;
    font-weight: 800;
    color: #18192f;
    margin-bottom: 18px;
}
.transform-left p {
    color: #222;
    font-size: 1.15rem;
    margin-bottom: 28px;
    max-width: 540px;
}
.transform-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.transform-list li {
    font-size: 1.08rem;
    color: #222;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    font-weight: 500;
}
.dot {
    display: inline-block;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    margin-right: 12px;
}
.dot-pink {
    background: #d72660;
}
.dot-blue {
    background: #2563eb;
}
.dot-green {
    background: #1bb76e;
}
.dot-purple {
    background: #a259e6;
}
.transform-right {
    flex: 1 1 400px;
    min-width: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.transform-img {
    width: 100%;
    max-width: 420px;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(80, 112, 255, 0.1);
    object-fit: cover;
    aspect-ratio: 4/3;
}
@media (max-width: 1100px) {
    .transform-container {
        flex-direction: column;
        gap: 32px;
        padding: 32px 12px 24px 12px;
    }
    .transform-right,
    .transform-left {
        min-width: 0;
    }
}
/* Impact Section */
.impact-section {
    background: #fff;
    padding: 70px 0 40px 0;
    text-align: center;
    overflow: hidden;
}
.impact-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 10px;
}
.impact-subtitle {
    color: #4b5563;
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
.impact-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
    margin-top: 20px;
}
.impact-card {
    background: #f9fafb;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
    padding: 32px 28px 24px 28px;
    width: 320px;
    text-align: center;
    transition:
        transform 0.18s,
        box-shadow 0.18s;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.impact-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 8px 32px rgba(27, 183, 110, 0.1);
}
.impact-icon {
    font-size: 2.5rem;
    border-radius: 50%;
    padding: 18px 20px;
    margin-bottom: 18px;
    display: inline-block;
    background: #fff;
    box-shadow: 0 2px 8px rgba(27, 183, 110, 0.08);
}
.impact-pink {
    color: #d72660;
}
.impact-red {
    color: #e53935;
}
.impact-blue {
    color: #2563eb;
}
.impact-green {
    color: #1bb76e;
}
.impact-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 8px;
}
.impact-card p {
    color: #444;
    font-size: 1.05rem;
    margin-bottom: 12px;
}
.impact-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1bb76e;
    margin-bottom: 6px;
}
@media (max-width: 1100px) {
    .impact-cards {
        gap: 18px;
    }
    .impact-card {
        width: 90vw;
        max-width: 400px;
    }
}
@media (max-width: 700px) {
    .impact-cards {
        flex-direction: column;
        align-items: center;
    }
    .impact-card {
        width: 98vw;
        max-width: 98vw;
    }
}
/* Health Programs Section */
.health-programs-section {
    background: #f7fafd;
    padding: 60px 0 40px 0;
    text-align: center;
    overflow: hidden;
}
.hps-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 10px;
}
.hps-subtitle {
    color: #4b5563;
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
.hps-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
    margin-top: 20px;
}
.hps-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    padding: 32px 28px 24px 28px;
    width: 320px;
    text-align: left;
    transition:
        transform 0.18s,
        box-shadow 0.18s;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.hps-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 8px 32px rgba(215, 38, 96, 0.1);
}
.hps-icon {
    font-size: 2.2rem;
    border-radius: 12px;
    padding: 12px 16px;
    margin-bottom: 18px;
    display: inline-block;
}
.hps-orange {
    background: #fff4e6;
    color: #ff9800;
}
.hps-pink {
    background: #ffe3f2;
    color: #d72660;
}
.hps-blue {
    background: #e3f0ff;
    color: #2563eb;
}
.hps-green {
    background: #e3fbe6;
    color: #1bb76e;
}
.hps-purple {
    background: #f3e8ff;
    color: #a259e6;
}
.hps-red {
    background: #ffeaea;
    color: #e53935;
}
.hps-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 8px;
}
.hps-card p {
    color: #444;
    font-size: 1.05rem;
    margin-bottom: 12px;
}
.hps-card ul {
    padding-left: 18px;
    margin: 0 0 0 0;
}
.hps-card ul li {
    color: #d72660;
    font-size: 1rem;
    margin-bottom: 4px;
    list-style: disc;
}
@media (max-width: 1100px) {
    .hps-cards {
        gap: 18px;
    }
    .hps-card {
        width: 90vw;
        max-width: 400px;
    }
}

@media (max-width: 700px) {
    .hps-cards {
        flex-direction: column;
        align-items: center;
        width: 100vw;
        box-sizing: border-box;
        padding-left: 0;
        padding-right: 0;
        margin-left: 0;
        margin-right: 0;
        overflow-x: hidden;
    }
    .hps-card {
        width: 100vw;
        max-width: 100vw;
        box-sizing: border-box;
        padding-left: 8px;
        padding-right: 8px;
        margin-left: 0;
        margin-right: 0;
        overflow-x: hidden;
    }
    body {
        overflow-x: hidden;
    }
}
body {
    background: #fdf6fa;
}

.community-health-section {
    padding: 60px 0 40px 0;
    background: linear-gradient(90deg, #fdf6fa 60%, #f3f8fd 100%);
    overflow: hidden;
}
.chi-badge {
    display: inline-block;
    background: #ffe3f2;
    color: #d72660;
    font-weight: 600;
    border-radius: 24px;
    padding: 8px 24px;
    margin-left: 8vw;
    margin-bottom: 24px;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}
.chi-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
    flex-wrap: wrap;
}
.chi-left {
    flex: 1 1 400px;
    min-width: 320px;
    padding-left: 8vw;
}
.chi-left h1 {
    font-size: 3rem;
    font-weight: 800;
    color: #222;
    margin-bottom: 12px;
    line-height: 1.1;
}
.chi-left .highlight {
    color: #d72660;
}
.chi-left p {
    font-size: 1.2rem;
    color: #3a3a3a;
    margin-bottom: 32px;
    max-width: 500px;
}
.chi-buttons {
    display: flex;
    gap: 18px;
    margin-bottom: 36px;
}
.btn {
    padding: 12px 32px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition:
        background 0.2s,
        color 0.2s,
        border 0.2s;
    display: inline-block;
    box-shadow: 0 2px 8px rgba(215, 38, 96, 0.06);
}
.btn-primary {
    background: #d72660;
    color: #fff;
    border: none;
}
.btn-primary:hover {
    background: #b81e4b;
}
.btn-outline {
    background: #fff;
    color: #d72660;
    border: 2px solid #d72660;
}
.btn-outline:hover {
    background: #ffe3f2;
}
.chi-stats {
    display: flex;
    gap: 40px;
    margin-top: 32px;
}
.stat {
    text-align: center;
}
.stat-icon {
    background: #ffe3f2;
    color: #d72660;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin: 0 auto 8px auto;
}
.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #222;
}
.stat-label {
    color: #888;
    font-size: 1rem;
}
.chi-right {
    flex: 1 1 350px;
    min-width: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.chi-image-frame {
    background: linear-gradient(120deg, #ffe3f2 60%, #e3f0ff 100%);
    border-radius: 32px;
    padding: 18px 18px 0 18px;
    box-shadow: 0 8px 32px rgba(215, 38, 96, 0.08);
    position: relative;
    transform: rotate(3deg);
    max-width: 400px;
}
.chi-main-img {
    width: 100%;
    border-radius: 18px;
    display: block;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}
.chi-image-badge {
    position: absolute;
    left: 24px;
    bottom: 18px;
    background: #fff;
    color: #1bb76e;
    border-radius: 14px;
    padding: 12px 24px 8px 18px;
    font-size: 1.1rem;
    font-weight: 600;
    box-shadow: 0 2px 12px rgba(27, 183, 110, 0.08);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}
.chi-image-badge i {
    margin-right: 8px;
    color: #1bb76e;
}
.chi-image-badge span {
    font-size: 0.95rem;
    color: #888;
    font-weight: 400;
}
@media (max-width: 900px) {
    .chi-content {
        flex-direction: column;
        gap: 32px;
    }
    .chi-left,
    .chi-right {
        padding-left: 0;
        min-width: 0;
    }
    .chi-badge {
        margin-left: 0;
    }
}

/* Gallery Section */
.gallery-section {
    background: #fff;
    padding: 60px 0 40px 0;
    text-align: center;
    overflow: hidden;
}
.gallery-title {
    font-size: 2.3rem;
    font-weight: 800;
    color: #d72660;
    margin-bottom: 32px;
    letter-spacing: 0.5px;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 16px;
}
.gallery-grid img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 4px 18px rgba(215, 38, 96, 0.08);
    transition:
        transform 0.18s,
        box-shadow 0.18s;
    background: #f6f6fb;
}
.gallery-grid img:hover {
    transform: scale(1.04) translateY(-6px);
    box-shadow: 0 8px 32px rgba(27, 183, 110, 0.12);
}
@media (max-width: 700px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 12px;
    }
    .gallery-grid img {
        height: 110px;
    }
}
